Disjoint Set

서로소 집합(Disjoin-set)

서로소 집합을 표현하는 방법

- 연결리스트
- 트리

서로소 집합 연산(Union-Find)

- Make-Set(x)
- Find-Set(x)
- Union(x,y)

관련 개념